home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / trapconvert.sql < prev    next >
Text File  |  2000-05-12  |  600b  |  18 lines

  1. /* RCSVER $Id: trapconvert.sql,v 1.1 2000-01-25 17:00:53-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        trapconvert.sql
  6. * Date:        01/25/00
  7. * memo:        Randy Wood
  8. * Description:    Create the trapconvert table.
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE trapconvert
  12. (
  13.     dayofweek        NUMBER(38),
  14.     dateconverted    DATE,
  15.     config_num        NUMBER(38),
  16.     CONSTRAINT pk_trapconvert PRIMARY KEY (dayofweek, config_num)
  17. );
  18.